VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ColorManagement Namespace / FastCompositeColorTransform Class / Create Methods / Create(String,ColorTransform[]) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
    Create(String,ColorTransform[]) Method (FastCompositeColorTransform)
    In This Topic
    Creates a new instance of the FastCompositeColorTransform class.
    Syntax
    'Declaration
    
    Public Overloads Shared Function Create( _
    ByVal description
    Description of the transform.
    As System.String, _
    ByVal ParamArray transforms
    Array of sub transforms of composite transform.
    () As ColorTransform _
    ) As FastCompositeColorTransform
    public static FastCompositeColorTransform Create(
    System.String description,
    params ColorTransform[] transforms
    )
    public: static FastCompositeColorTransform* Create(
    System.String description,
    params ColorTransform*[]* transforms
    )
    public:
    static FastCompositeColorTransform^ Create(
    System.String description,
    ... array<ColorTransform^>^ transforms
    )

    Parameters

    description
    Description of the transform.
    transforms
    Array of sub transforms of composite transform.

    Return Value

    A SimpleCompositeColorTransform that is a composition of specified color transforms.
    Exceptions
    ExceptionDescription
    Thrown if transforms is null.
    Thrown if transforms contains less than 2 items.
    Thrown if transforms has incompatible color spaces of some adjacent color transforms.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also